home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / comm / mail / thor201.lha / THOR_2.0 / thor.lha / rexx / examples / HitRate.br < prev    next >
Text File  |  1995-05-15  |  375b  |  23 lines

  1. /*  $VER: HitRate.br 3.1 (07.06.94)
  2.  *
  3.  *  Get hitrate for buffer system
  4.  */
  5.  
  6.     if ~show('p', 'BBSREAD') then do
  7.         address command
  8.             "run >nil: `GetEnv THOR/THORPath`bin/LoadBBSRead"
  9.             "WaitForPort BBSREAD"
  10.     end
  11.  
  12.     options results
  13.     address BBSREAD
  14.  
  15.  
  16.     BUFHITRATE RATES
  17.  
  18.     say 'Global hitrate:' result
  19.     say 'Read hitrate:  ' RATES.READ
  20.     say 'Write hitrate: ' RATES.WRITE
  21.  
  22.     exit
  23.